-
-
Notifications
You must be signed in to change notification settings - Fork 114
Axes panel visibility issues #506
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
f49f31a to
e5f1f23
Compare
|
💃 |
src/default_panels/StyleAxesPanel.js
Outdated
| name={_('Hover Projections')} | ||
| axisFilter={axis => | ||
| !axis._name.includes('angular') && !axis._name.includes('radial') | ||
| !axis._name.includes('angular') && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it possible to have angular in a cartesian subplot? I don't think so... so we can get rid of the first two checks here no?
src/default_panels/StyleAxesPanel.js
Outdated
| axisFilter={axis => | ||
| !axis._name.includes('radial') && !axis._name.includes('angular') | ||
| !( | ||
| axis._name.includes('radial') || |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here can we not do something like _subplot.includes('polar') or something?
7a72aa0 to
d4ae302
Compare
|
According to Percy we've just lost the Hover Projections fold for a cartesian set of axes... can you look into that plz? |
|
Yep, because subplot is not 'cartesian', but 'xaxis' or 'yaxis' |
|
Ah, ok, then that logic needs changing :) |
d4ae302 to
95891a6
Compare
|
💃 |
Addresses #473